Redirect /technical-changelog.rss to new docs service#1537
Merged
taras-yemets merged 4 commits intomainfrom Jan 14, 2026
Merged
Redirect /technical-changelog.rss to new docs service#1537taras-yemets merged 4 commits intomainfrom
taras-yemets merged 4 commits intomainfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- Remove local RSS generation (dev/rss.js) - Redirect to https://sourcegraph.com/changelog/technical-changelog.rss - Extract URL to shared constant
6bd9e69 to
8cf86b6
Compare
7c424bd to
136d495
Compare
eseliger
reviewed
Jan 14, 2026
src/middleware.ts
Outdated
| return NextResponse.redirect( | ||
| createRedirectUrl(request, redirect.destination, path) | ||
| createRedirectUrl(request, redirect.destination, path), | ||
| redirect.permanent ? 308 : 307 |
Member
There was a problem hiding this comment.
permanent redirects are basically impossible to ever change again because of very aggressive browser caching, maybe we should just keep them as 307s? there are a lot of permanent ones in the redirects and I'm not convinced we want all of them to redirect for all time going forward 😬
eseliger
approved these changes
Jan 14, 2026
Member
eseliger
left a comment
There was a problem hiding this comment.
approve to unblock, left 1 suggestion
Contributor
Author
|
Verified it works in prod curl -I https://sourcegraph.com/docs/technical-changelog.rss
HTTP/2 307
location: https://sourcegraph.com/changelog/technical-changelog.rss |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
RSS feed is now served from the new docs service at
/changelog/technical-changelog.rss.dev/rss.js)Test plan